home *** CD-ROM | disk | FTP | other *** search
/ Belgian Amiga Club - ADF Collection / BS1 part 54.zip / BS part 54 / Alladin4D_2.1_d2.adf / FrameScriptExample / d4dproFI next >
Encoding:
Text File  |  1991-05-16  |  690 b   |  23 lines

  1. .k FILENAME/a
  2. ;
  3. ;
  4. ; the .k line allows you to access the name of the file as <FILENAME>
  5. ; anywhere in this script
  6. ; NEVER "run" a command
  7. ;
  8. ;
  9. ; NOTE: This file must be named: "d4dproFI" (without the quotes) and must
  10. ;       be located in the s: directory
  11. ;
  12. ;       To enable the script, turn on the Frame Script render option.
  13. ;       Then save your animation as 24 bit individual frames.
  14. ;
  15. ;       This example script will take the 24 bit image and convert it to
  16. ;       a DCTV picture with the DCTV utilitiy IFFtoDCTV and then delete
  17. ;       the original 24 bit image.
  18. ;
  19. ;
  20. echo "Processing file <FILENAME>"
  21. work:dctv/util/ifftodctv <FILENAME> <FILENAME> -w704 -h482 -d4
  22. delete <FILENAME>
  23.